(set: $number to (random: 1, 100))
<b>Welcome to a number guessing game.</b>
I am thinking of a number between 1 and 100.
*You will be asked to guess it. I will tell you if your guess is higher or lower than the number I've chosen.
[[<b>You win by guessing my number!</b>|Guess]]*
(set: $guess to (num:(prompt: "What number do you guess?")))
(if: $guess < $number)[(goto: "Low")]
(if: $guess > $number)[(goto: "High")]
(if: $guess is $number)[(goto: "Correct")]
The number you guessed is higher than the correct answer.
[[Guess again!|Guess]]
The number you guessed is lower than the correct answer.
[[Guess again!|Guess]]
The number you guessed is correct!
<b>Bravo! You've won!</b>
*It only took you (count: (history:), "Guess") guesses.*